home *** CD-ROM | disk | FTP | other *** search
/ Aminet 25 / Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso / Aminet / dev / debug / Blowup.lha / source / protos.h < prev    next >
Text File  |  1998-04-18  |  1KB  |  38 lines

  1.  
  2. /* data.c */
  3.  
  4. /* dprintf.c */
  5. VOID ChooseParallelOutput(VOID);
  6. VOID DVPrintf(const STRPTR format, const va_list varArgs);
  7. VOID DPrintf(const STRPTR format, ...);
  8.  
  9. /* dump.c */
  10. VOID VoiceComplaint(UBYTE trap, UWORD sr, ULONG pc, ULONG *stackFrame, const STRPTR format, ...);
  11.  
  12. /* main.c */
  13. int main(int argc, char **argv);
  14.  
  15. /* patches.c */
  16. VOID AddPatches(VOID);
  17. VOID RemovePatches(VOID);
  18.  
  19. /* segtracker.c */
  20. BOOL FindAddress(ULONG address, LONG nameLen, STRPTR nameBuffer, ULONG *segmentPtr, ULONG *offsetPtr);
  21.  
  22. /* showcrashinfo.c */
  23. VOID ASM ShowCrashInfo(REG (d0 )UBYTE trapType, REG (d1 )ULONG pc, REG (d2 )UWORD sr, REG (a0 )ULONG *stackFrame);
  24.  
  25. /* timer.c */
  26. VOID StopTimer(VOID);
  27. VOID StartTimer(ULONG seconds, ULONG micros);
  28. VOID DeleteTimer(VOID);
  29. BYTE CreateTimer(VOID);
  30.  
  31. /* tools.c */
  32. VOID StrcpyN(LONG MaxLen, STRPTR To, const STRPTR From);
  33. BOOL VSPrintfN(LONG MaxLen, STRPTR Buffer, const STRPTR FormatString, const va_list VarArgs);
  34. BOOL SPrintfN(LONG MaxLen, STRPTR Buffer, const STRPTR FormatString, ...);
  35. VOID ConvertTimeAndDate(const struct timeval *tv, STRPTR dateTimeBuffer);
  36.  
  37. /* system_headers.c */
  38.